home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 February / maximum-cd-2012-02.iso / DiscContents / TheWagerSetup1.2.exe / Assets / Scripts / [16].lua < prev    next >
Encoding:
Text File  |  2011-02-27  |  648 b   |  20 lines

  1. -- Script [16]
  2. Starting = 1;
  3. SeaEvent = 0;
  4.  
  5. ShowStoryText("In your explorations you happen across a map purporting to lead to that most prized of goals: buried treasure. Searching for a few days, you finally find your destination, but the treasure appears to be buried at the bottom of a deep well.");
  6.  
  7. SetStartingEvent(ScriptID, false);
  8.  
  9. if InInventory("{8}") then
  10.   AddChoice("Use your climbing tools to get down", "[33]");
  11. end
  12.  
  13. if InInventory("{9}") then
  14.   AddChoice("Use your Sturdy Rope to get down", "[33]");
  15. end
  16.  
  17. if not (InInventory("{8}") or InInventory("{9}")) then
  18.   AddChoice("There's just no way down!", "[34]");
  19. end
  20.